github.com/coder/websocket.Conn.writeFrame (method)

6 uses

	github.com/coder/websocket (current package)
		write.go#L111: 		return c.writeFrame(ctx, true, false, c.msgWriter.opcode, p)
		write.go#L183: 	_, err = mw.c.writeFrame(ctx, true, true, mw.opcode, buf.Bytes())
		write.go#L224: 	n, err := mw.c.writeFrame(mw.ctx, false, mw.flate, mw.opcode, p)
		write.go#L254: 	_, err = mw.c.writeFrame(mw.ctx, true, mw.flate, mw.opcode, nil)
		write.go#L280: 	_, err := c.writeFrame(ctx, true, false, opcode, p)
		write.go#L288: func (c *Conn) writeFrame(ctx context.Context, fin bool, flate bool, opcode opcode, p []byte) (_ int, err error) {